From: Jim Blandy Date: Sun, 21 Mar 1993 05:50:17 +0000 (+0000) Subject: * isearch.el (isearch-switch-frame-handler): Call X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96764 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=dba1ec5561d98290d8a450c5b3e939363e7f9176;p=emacs.git * isearch.el (isearch-switch-frame-handler): Call handle-switch-frame instead of select-frame; it has been renamed. --- diff --git a/lisp/isearch.el b/lisp/isearch.el index 886bbd9c837..85b8924ac0d 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -4,7 +4,7 @@ ;; Author: Daniel LaLiberte -;; |$Date: 1993/03/17 16:44:50 $|$Revision: 1.25 $ +;; |$Date: 1993/03/17 17:17:05 $|$Revision: 1.26 $ ;; This file is not yet part of GNU Emacs, but it is based almost ;; entirely on isearch.el which is part of GNU Emacs. @@ -92,8 +92,11 @@ ;;;==================================================================== ;;; Change History -;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.25 1993/03/17 16:44:50 eric Exp eric $ +;;; $Header: /home/gd/gnu/emacs/19.0/lisp/RCS/isearch.el,v 1.26 1993/03/17 17:17:05 eric Exp jimb $ ;;; $Log: isearch.el,v $ +; Revision 1.26 1993/03/17 17:17:05 eric +; Add standard library headers. +; ; Revision 1.25 1993/03/17 16:44:50 eric ; Add standard library headers. ; @@ -702,7 +705,7 @@ is treated as a regexp. See \\[isearch-forward] for more info." (interactive) ;; Is this necessary? ;; First terminate isearch-mode. (isearch-done) - (select-frame (car (cdr (isearch-last-command-char))))) + (handle-switch-frame (car (cdr (isearch-last-command-char))))) ;;;========================================================